home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacHack 1997
/
MacHack 1997.toast
/
Presentations
/
Presentations ’97
/
Sessions ’97
/
Multiplatform Code⁄Data Sharing
/
HelloBothWorlds
/
Libraries
/
resfile.cpp
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1997-06-26
|
350 b
|
17 lines
|
[
TEXT/CWIE
]
// mail <chelly@eden.com> or surf http://www.eden.com/~chelly for feedback
// free source code - do whatever you like with it
// common interface base class for resource access classes
// nothing special in the implementation here
#include "resfile.h"
resfile::~resfile() { }
void resfile::release_resource( void* p )
{
delete [] (char*) p;
}